home *** CD-ROM | disk | FTP | other *** search
/ PC Entertainment 1996 January / PC Entertainment 1996 January.iso / pc / blind / justice.bat < prev    next >
DOS Batch File  |  1995-01-03  |  1KB  |  43 lines

  1. @echo off
  2.  
  3. rem ***** Blind Justice Startup Batch file *****
  4. rem ***** Demo 1.4 version *****
  5.  
  6. SET DOS4GPATH=..
  7.   DATA\GENCHECK 2 1400 
  8.    if errorlevel 1 goto :need14meg
  9. SET DOS4G=QUIET
  10.   DATA\GENCHECK 1 4300
  11.    if errorlevel 1 goto :initvmm
  12.  
  13. :return
  14.       set DOS4GPATH=
  15.       GAME.EXE 1 0 1
  16.       CALL DATA\VMR.BAT OFF
  17.       goto :end
  18.  
  19. :initvmm
  20.       DATA\GENCHECK 2 5400
  21.       if errorlevel 1 goto :novmminit
  22.       CALL DATA\VMR.BAT
  23.       goto :return
  24.  
  25. :novmminit
  26.       echo ˇ
  27.       echo Cannot initialize the virtual memory manager. Please make sure that
  28.       echo 5.4 megabytes of disk space is free.
  29.       goto :end
  30.  
  31. :need14meg
  32.       echo ˇ
  33.       echo Insufficient disk space. Blind Justice requires that 1.4 megabytes of
  34.       echo disk space be available during game play. For tips on freeing up memory,
  35.       echo please consult the game manuals.
  36.       goto :end
  37.  
  38. :end
  39.       set dos4g=
  40.       echo ...and you return to the real world.
  41.       echo ˇ
  42.  
  43.